home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / waisgate / HTWriter.h < prev    next >
C/C++ Source or Header  |  1995-05-09  |  632b  |  29 lines

  1. /*  */
  2.  
  3. /*              Unix File or Socket Writer                      HTWriter.c
  4. **              --------------------------
  5. **
  6. **      This version of the stream object just writes to a socket.
  7. **      The socket is assumed open and closed afterward.
  8. **
  9. **      There are two versions (identical on ASCII machines)
  10. **      one of which converts to ASCII on output.
  11. **
  12. **      Bugs:
  13. **              strings written must be less than buffer size.
  14. */
  15.  
  16. #ifndef HTWRITE_H
  17. #define HTWRITE_H
  18.  
  19. #include "HTStream.h"
  20.  
  21. extern HTStream * HTWriter_new PARAMS((int soc));
  22.  
  23. extern HTStream * HTASCIIWriter PARAMS((int soc));
  24.  
  25. #endif
  26. /*
  27.  
  28.     */
  29.